home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 11047 / 11047.xpi / content / dailymotion2mp3.js < prev    next >
Text File  |  2009-06-10  |  931b  |  36 lines

  1. // ==UserScript==
  2. // @name           Dailymotion 2 MP3
  3. // @description    Adds an option to download and convert MyVideo videos.
  4. // @namespace      http://googlesystem.blogspot.com
  5. // @include        http://*.dailymotion.com/*_*
  6. // @include        http://dailymotion.com/*_*
  7. // @version        0.3
  8. // ==/UserScript==
  9.  
  10.  
  11.  
  12.  
  13.  
  14. (function () {
  15.  
  16.  
  17.   if (document.getElementById('convert-dailymotion-video')) return;
  18.  
  19.  
  20.  
  21.   
  22.   
  23.  
  24.    var dailymotion2mp3path ='http://www.video2mp3.net/?url='+encodeURIComponent(document.URL); 
  25.    
  26.    var div_embed = document.getElementsByClassName('dm_widget_videotools')[0];
  27.  
  28.    if (div_embed) {
  29.       div_embed.innerHTML = div_embed.innerHTML + '<br />   <span id=\'convert-dailymotion-video\'> <a href=\''+dailymotion2mp3path+'\' title=\'Convert this video into MP3 and download it\' target=\'_blank\'><b>Convert & Download as MP3</b></a></span>';      
  30.   }
  31.  
  32.  
  33.  
  34.  
  35.   
  36. })();